/*
* Copyright (C) 2012
* Arindam Nath (strider2023@gmail.com)
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.touchmenotapps.widget.radialmenu;
/**
* @author Arindam Nath (strider2023@gmail.com)
*/
public class RadialMenuColors {
public static final int HOLO_LIGHT_BLUE = 0xff33b5e5;
public static final int HOLO_DARK_BLUE = 0xff0099cc;
public static final int HOLO_LIGHT_PURPLE = 0xffaa66cc;
public static final int HOLO_DARK_PURPLE = 0xff9933cc;
public static final int HOLO_LIGHT_GREEN = 0xff99cc00;
public static final int HOLO_DARK_GREEN = 0xff669900;
public static final int HOLO_LIGHT_ORANGE = 0xffffbb33;
public static final int HOLO_DARK_ORANGE = 0xffff8800;
public static final int HOLO_LIGHT_RED = 0xffff4444;
public static final int HOLO_DARK_RED = 0xffcc0000;
}